Skip to content

Commit

Permalink
correct comment
Browse files Browse the repository at this point in the history
  • Loading branch information
johnataylor committed May 24, 2019
1 parent bd792d4 commit 7b60354
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/botbuilder-core/src/botState.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export class BotState implements PropertyManager {
* Creates a new property accessor for reading and writing an individual property to the bot
* states storage object.
* @param T (Optional) type of property to create. Defaults to `any` type.
* @param name Name of the property to add. Must be unique within the set.
* @param name Name of the property to add.
*/
public createProperty<T = any>(name: string): StatePropertyAccessor<T> {
const prop: BotStatePropertyAccessor<T> = new BotStatePropertyAccessor<T>(this, name);
Expand Down

0 comments on commit 7b60354

Please sign in to comment.