瀏覽代碼

correct the max line-width of the example code

Julius Pfrommer 10 年之前
父節點
當前提交
5bc05e46e8
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      README.md

+ 3 - 3
README.md

@@ -55,13 +55,13 @@ int main(int argc, char** argv) {
     UA_String myIntegerName;
     UA_STRING_STATIC(myIntegerName, "The Answer");
     UA_Server_addScalarVariableNode(server,
-                                    /* The browse name, the value and the datatype's vtable*/
+                                    /* browse name, the value and the datatype's vtable */
                                     &myIntegerName, (void*)&myInteger, &UA_TYPES[UA_INT32],
 
-                                    /* The parent node to which the variable shall be attached */
+                                    /* the parent node where the variable shall be attached */
                                     &UA_NODEIDS[UA_OBJECTSFOLDER],
                                     
-                                    /* The (hierarchical) reference type from the "parent" node*/
+                                    /* the (hierarchical) referencetype from the parent */
                                     &UA_NODEIDS[UA_HASCOMPONENT]);
 
     /* attach a network layer */