diff --git a/src/EvernoteSDK/Advanced/ENSDKAdvanced.cs b/src/EvernoteSDK/Advanced/ENSDKAdvanced.cs index aace874..d5a1ddd 100644 --- a/src/EvernoteSDK/Advanced/ENSDKAdvanced.cs +++ b/src/EvernoteSDK/Advanced/ENSDKAdvanced.cs @@ -21,7 +21,7 @@ public class ENSessionAdvanced : ENSession { if (ENSessionInterfaceType == InterfaceType.Basic) { - var err = "Attempting to use the Advanced interface without first having called ENSessionAdvanced.SetSharedSessionConsumerKey"; + var err = "Attempting to use the Advanced interface without first having called ENSessionAdvanced.SetSharedSessionConsumerKey or ENSessionAdvanced.SetSharedSessionDeveloperToken"; ENSDKLogger.ENSDKLogError(err); throw new Exception(err); } @@ -273,7 +273,7 @@ public ENNoteAdvanced(Note edamNote) : base(edamNote) } ///** - //* A property indicating the "source" URL for this note. Optional, and useful mainly in contexts where the + //* A property indicating the "source" URL for this note. Optional, and useful mainly in contexts where the //* note is captured from web content. //*/ new public string SourceUrl @@ -291,7 +291,7 @@ public ENNoteAdvanced(Note edamNote) : base(edamNote) ///** //* An optional dictionary of attributes which are used at upload time only to apply to an EDAMNote's attributes during //* its creation. The keys in the dictionary should be valid keys in an EDAMNoteAttributes, e.g. "author", or "sourceApplication"; - //* the values are the objects to apply. + //* the values are the objects to apply. //* //* Note that downloaded notes do not populate this dictionary; if you need to inspect properties of an EDAMNote that aren't //* represented by ENNote, you should use ENNoteStoreClient's -getNoteWithGuid... method to download the EDAMNote directly.