-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update server go.doc #35
Conversation
When working with this it was not immediately clear that the `version` parameter was not simply a string. I figured it out reading the code, and hopefully this little update will be useful to others too.
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). For more information, open the CLA check for this pull request. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you! Just a couple minor whitespace changes and I'd be happy to merge this.
.gitignore
Outdated
@@ -1 +1,4 @@ | |||
*.jar | |||
|
|||
# editor files | |||
*.idea |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
*.idea | |
*.idea | |
tika/doc.go
Outdated
for removing the file when no longer needed. Version is a custom type, | ||
and should be passed as such. There are constants in the code for these. | ||
The following example downloads version 1.21 to the named JAR in the | ||
current working directory. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for removing the file when no longer needed. Version is a custom type, | |
and should be passed as such. There are constants in the code for these. | |
The following example downloads version 1.21 to the named JAR in the | |
current working directory. | |
for removing the file when no longer needed. | |
Version is a custom type, | |
and should be passed as such. There are constants in the code for these. | |
The following example downloads version 1.21 to the named JAR in the | |
current working directory. |
(New paragraph, need to adjust line breaks.)
1. new lines in doc.go 2. new line at the endo of .gitignore
Hi @tbpg, thanks for the feedback. I've made those requested changes now. Hope it looks alright |
the lint failure is unclear to me, is there something I need to change? |
@nathj07, would you mind pulling in the latest changes from main? Looks like I don't have edit access. I updated the CI config and it seems to be working now. |
When working with this it was not immediately clear that the
version
parameter was not simply a string.I figured it out reading the code, and hopefully this little update will be useful to others too.