Skip to content

Commit

Permalink
of course a rename was left out
Browse files Browse the repository at this point in the history
  • Loading branch information
lostfields committed Nov 29, 2021
1 parent 87e3d86 commit e4eab67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/linq/enumerable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ export class Enumerable<TEntity> extends Base<TEntity> {
* A rewrite of previous where/orderBy to a new identifier name, where members is seperated with dot.
* @param rewrites array of rewrite from a identifier name to a new one, with a possibility convert the value as well
*/
public rewrite<TRecord extends Record<string, any>>(...rewrites: { from: string, to?: string, rewriteValue?: (value: any) => any }[]): Enumerable<TRecord>
public rewrite<TRecord extends Record<string, any>>(...rewrites: { from: string, to?: string, convert?: (value: any) => any }[]): Enumerable<TRecord>
/**
* A rewrite of previous where/orderBy to a new identifier name, where members is seperated with dot.
* @param rewrites array of rewrite from a identifier name to a new one, with a possibility convert the value as well
Expand Down

0 comments on commit e4eab67

Please sign in to comment.