Skip to content

Commit 547e178

Browse files
bdurranikblok
authored andcommitted
highlight contribution section (#770)
1 parent 45880a9 commit 547e178

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,19 @@ Support us with a monthly donation and help us continue our activities. [Become
3030
* As Puppeteer-Sharp is a NetStandard 2.0 library, The minimum platform versions are .NET Framework 4.6.1 and .NET Core 2.0. [Read more](https://docs.microsoft.com/en-us/dotnet/standard/net-standard).
3131
* The minimum Windows versions supporting the WebSocket library are Windows 8 and Windows Server 2012. [Read more](https://docs.microsoft.com/en-us/dotnet/api/system.net.websockets?redirectedfrom=MSDN&view=netframework-4.7.2).
3232

33+
# How to Contribute and Provide Feedback
34+
35+
Some of the best ways to contribute are to try things out file bugs and fix issues.
36+
37+
If you have an issue or a question:
38+
39+
* Ask a question on [Stack Overflow](https://stackoverflow.com/search?q=puppeteer-sharp).
40+
* File a [new issue](https://github.com/kblok/puppeteer-sharp/issues/new).
41+
42+
## Contributing Guide
43+
44+
See [this document](https://github.com/kblok/puppeteer-sharp/blob/master/CONTRIBUTING.md) for information on how to contribute.
45+
3346
# Usage
3447

3548
## Take screenshots
@@ -87,7 +100,7 @@ using(var page = await browser.NewPageAsync())
87100
```cs
88101
using (var page = await browser.NewPageAsync())
89102
{
90-
var seven = await page.EvaluateFunctionAsync<int>(4 + 3);
103+
var seven = await page.EvaluateFunctionAsync<int>("4 + 3");
91104
var someObject = await page.EvaluateFunctionAsync<dynamic>("(value) => ({a: value})", 5);
92105
Console.WriteLine(someObject.a);
93106
}

docfx_project/api/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ using(var page = await Browser.NewPageAsync())
5959
```cs
6060
using (var page = await Browser.NewPageAsync())
6161
{
62-
var seven = await page.EvaluateFunctionAsync<int>(4 + 3);
62+
var seven = await page.EvaluateFunctionAsync<int>("4 + 3");
6363
var someObject = await page.EvaluateFunctionAsync<dynamic>("(value) => ({a: value})", 5);
6464
Console.WriteLine(someObject.a);
6565
}

0 commit comments

Comments
 (0)