Skip to content

Commit 85a7d15

Browse files
authored
Fixed Syntax Error for Context Example
Moved a ')' around to the end of the call.
1 parent 8ed2f38 commit 85a7d15

File tree

1 file changed

+2
-2
lines changed
  • src/connections/sources/catalog/libraries/server/net

1 file changed

+2
-2
lines changed

src/connections/sources/catalog/libraries/server/net/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ If you're running a web server, you might want to send [context variables](https
355355
Analytics.Client.Page("019mr8mf4r", "Login", new Properties() {
356356
{ "path", "/login" },
357357
{ "title", "Initech Login" }
358-
}), new Options()
358+
}, new Options()
359359
.SetContext (new Context () {
360360
{ "userAgent", "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36"},
361361
{ "ip", "12.212.12.49" },
@@ -364,7 +364,7 @@ Analytics.Client.Page("019mr8mf4r", "Login", new Properties() {
364364
{ "clientId", User.ClientId }
365365
}
366366
}
367-
});
367+
}));
368368
```
369369

370370
## Anonymous ID

0 commit comments

Comments
 (0)