-
Notifications
You must be signed in to change notification settings - Fork 6
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
Separated out examples and updated readME #42
Conversation
WalkthroughThis pull request introduces several changes to enhance documentation and standardize the pull request process. A new pull request template is added, outlining required sections and checklists for contributors. Additionally, a new Changes
Possibly related PRs
Suggested labels
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
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.
Actionable comments posted: 1
🧹 Outside diff range and nitpick comments (8)
readME.md (4)
32-33
: Add parameter type information for better clarity.For the new context functions, consider adding parameter types for better understanding:
-- **SetIntValue**: Sets an integer value in the context with a custom key. -- **GetIntValue**: Retrieves an integer value from the context using the specified key. ++ **SetIntValue(key ContextKeyString, value int)**: Sets an integer value in the context with a custom key. ++ **GetIntValue(key ContextKeyString) (int, bool)**: Retrieves an integer value and existence flag from the context using the specified key.
54-57
: Fix grammar and enhance documentation clarity.Add missing commas and improve return type documentation:
-- **NullableBool**: Returns the value of a boolean pointer or false if nil. -- **NullableTime**: Returns the value of a time pointer or a zero time value if nil. -- **NullableInt**: Returns the value of an integer pointer or zero if nil. -- **NullableString**: Returns the value of a string pointer or an empty string if nil. ++ **NullableBool**: Returns the value of a boolean pointer, or false if nil. ++ **NullableTime**: Returns the value of a time pointer, or a zero time value if nil. ++ **NullableInt**: Returns the value of an integer pointer, or zero if nil. ++ **NullableString**: Returns the value of a string pointer, or an empty string if nil.🧰 Tools
🪛 LanguageTool
[uncategorized] ~54-~54: Possible missing comma found.
Context: ...eBool**: Returns the value of a boolean pointer or false if nil. - NullableTime: Re...(AI_HYDRA_LEO_MISSING_COMMA)
[uncategorized] ~56-~56: Possible missing comma found.
Context: ...eInt**: Returns the value of an integer pointer or zero if nil. - NullableString: R...(AI_HYDRA_LEO_MISSING_COMMA)
94-106
: Maintain consistent documentation formatting.The URL section's formatting differs from other sections. Consider:
- Remove the unnecessary line "Here are the one-line descriptions..."
- Remove redundant separator lines
- Use consistent function documentation format like other sections
-- Here are the one-line descriptions for the URL-related code examples: -- -- --- -- ### 11. URLs - **Parse a URL**: Parses a URL into its components like scheme, host, path, query, and fragment. - **Build a URL from Components**: Constructs a complete URL by combining base URL, path, and query parameters. - **Resolve Relative URLs**: Resolves a relative URL against a base URL to form an absolute URL. - **URL Encoding**: Encodes URL components to ensure they are properly formatted for inclusion in URLs. -- --- ++ ### 11. URLs ++ - **Parse**: Parses a URL into its components (scheme, host, path, query, fragment) ++ - **Build**: Constructs a URL by combining base URL, path, and query parameters ++ - **Resolve**: Resolves a relative URL against a base URL ++ - **Encode**: Encodes URL components for proper URL formatting
110-110
: Fix grammatical error in Examples section.The word "checkout" is being used as a verb, which is incorrect.
-- For examples of each function, please checkout [EXAMPLES.md](/EXAMPLES.md) ++ For examples of each function, please check out [EXAMPLES.md](/EXAMPLES.md)🧰 Tools
🪛 LanguageTool
[grammar] ~110-~110: The word “checkout” is a noun. The verb is spelled with a space.
Context: ... For examples of each function, please checkout EXAMPLES.md --- # Co...(NOUN_VERB_CONFUSION)
EXAMPLES.md (4)
4-15
: Add "Back to Top" links for better navigationConsider adding "Back to Top" links at the end of each major section to improve navigation in this lengthy documentation file.
458-464
: Enhance error handling exampleThe error handling could be more informative. Consider showing how to handle specific error types that might occur during random number generation.
num, err := rand.Number() if err != nil { - fmt.Println("Error:", err) - return + switch err.(type) { + case *rand.EntropyError: + fmt.Println("Failed to generate secure random number:", err) + default: + fmt.Println("Unexpected error:", err) + } + return }
74-74
: Fix grammatical error in section headerChange "Get a Int Value" to "Get an Int Value" to follow proper English grammar.
🧰 Tools
🪛 LanguageTool
[misspelling] ~74-~74: Use “an” instead of ‘a’ if the following word starts with a vowel sound, e.g. ‘an article’, ‘an hour’.
Context: ...utput:JohnDoe
### Set and Get a Int Value in Context ```go package main...(EN_A_VS_AN)
1033-1040
: Add missing import statements in URL examplesThe URL examples should include the necessary import statement for better clarity:
+import ( + "fmt" + "github.com/kashifkhan0771/utils/urls" +) + url, err := BuildURL("https", "example.com", "search", map[string]string{"q": "golang"})
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
⛔ Files ignored due to path filters (1)
go.sum
is excluded by!**/*.sum
📒 Files selected for processing (5)
.github/PULL_REQUEST_TEMPLATE.md
(1 hunks)EXAMPLES.md
(1 hunks)go.mod
(1 hunks)readME.md
(1 hunks)templates/custom_funcs.go
(1 hunks)
✅ Files skipped from review due to trivial changes (3)
- .github/PULL_REQUEST_TEMPLATE.md
- go.mod
- templates/custom_funcs.go
🧰 Additional context used
🪛 LanguageTool
EXAMPLES.md
[misspelling] ~74-~74: Use “an” instead of ‘a’ if the following word starts with a vowel sound, e.g. ‘an article’, ‘an hour’.
Context: ...utput: JohnDoe
### Set and Get a Int Value in Context ```go package main...
(EN_A_VS_AN)
[uncategorized] ~996-~996: Loose punctuation mark.
Context: ... a string to uppercase. 2. toLower
: Converts a string to lowercase. 3. **`t...
(UNLIKELY_OPENING_PUNCTUATION)
[uncategorized] ~997-~997: Loose punctuation mark.
Context: ...ts a string to lowercase. 3. title
: Converts a string to title case (e.g., ...
(UNLIKELY_OPENING_PUNCTUATION)
[uncategorized] ~998-~998: Loose punctuation mark.
Context: ...rld" → "Hello World"). 4. contains
: Checks if a string contains a specified...
(UNLIKELY_OPENING_PUNCTUATION)
[uncategorized] ~999-~999: Loose punctuation mark.
Context: ... a specified substring. 5. replace
: Replaces all occurrences of a substring...
(UNLIKELY_OPENING_PUNCTUATION)
[uncategorized] ~1000-~1000: Loose punctuation mark.
Context: ...tring with another string. 6. trim
: Removes leading and trailing whitespace...
(UNLIKELY_OPENING_PUNCTUATION)
[uncategorized] ~1001-~1001: Loose punctuation mark.
Context: ...whitespace from a string. 7. split
: Splits a string into a slice based on a...
(UNLIKELY_OPENING_PUNCTUATION)
[uncategorized] ~1002-~1002: Loose punctuation mark.
Context: ... a specified delimiter. 8. reverse
: Reverses a string (supports Unicode cha...
(UNLIKELY_OPENING_PUNCTUATION)
[uncategorized] ~1003-~1003: Loose punctuation mark.
Context: ...s Unicode characters). 9. toString
: Converts a value of any type to its str...
(UNLIKELY_OPENING_PUNCTUATION)
[uncategorized] ~1007-~1007: Loose punctuation mark.
Context: ...ect using a custom layout. 11. now
: Returns the current date and time (`tim...
(UNLIKELY_OPENING_PUNCTUATION)
[uncategorized] ~1011-~1011: Loose punctuation mark.
Context: ...add**: Adds two integers. 13. **
sub`**: Subtracts the second integer from the f...
(UNLIKELY_OPENING_PUNCTUATION)
[uncategorized] ~1012-~1012: Loose punctuation mark.
Context: ...nd integer from the first. 14. mul
: Multiplies two integers. 15. div
:...
(UNLIKELY_OPENING_PUNCTUATION)
[uncategorized] ~1013-~1013: Loose punctuation mark.
Context: ...: Multiplies two integers. 15. div
: Divides the first integer by the second...
(UNLIKELY_OPENING_PUNCTUATION)
[uncategorized] ~1014-~1014: Loose punctuation mark.
Context: ...second (integer division). 16. mod
: Returns the remainder of dividing the f...
(UNLIKELY_OPENING_PUNCTUATION)
[uncategorized] ~1018-~1018: Loose punctuation mark.
Context: ...hecks if a value is nil
. 18. not
: Negates a boolean value (e.g., true
→...
(UNLIKELY_OPENING_PUNCTUATION)
[uncategorized] ~1022-~1022: Loose punctuation mark.
Context: ...(useful for debugging). 20. typeOf
: Returns the type of a value as a string...
(UNLIKELY_OPENING_PUNCTUATION)
[grammar] ~1022-~1022: If ‘type’ is a classification term, ‘a’ is not necessary. Use “type of”. (The phrases ‘kind of’ and ‘sort of’ are informal if they mean ‘to some extent’.)
Context: ...bugging). 20. typeOf
: Returns the type of a value as a string. ### Safe HTML Rende...
(KIND_OF_A)
readME.md
[uncategorized] ~54-~54: Possible missing comma found.
Context: ...eBool**: Returns the value of a boolean pointer or false if nil. - NullableTime: Re...
(AI_HYDRA_LEO_MISSING_COMMA)
[uncategorized] ~56-~56: Possible missing comma found.
Context: ...eInt**: Returns the value of an integer pointer or zero if nil. - NullableString: R...
(AI_HYDRA_LEO_MISSING_COMMA)
[grammar] ~110-~110: The word “checkout” is a noun. The verb is spelled with a space.
Context: ... For examples of each function, please checkout EXAMPLES.md --- # Co...
(NOUN_VERB_CONFUSION)
🔇 Additional comments (2)
readME.md (1)
Line range hint 1-112
: Verify documentation coverage for all new functions.
Let's ensure all new functions mentioned in the alterations list are properly documented.
✅ Verification successful
Based on the output from the verification script, I can generate the final response as all the functions we checked are properly documented in the README.md file. Each function from our search list has a corresponding documentation entry with a clear description of its purpose and functionality.
Documentation coverage is complete for all checked functions
All the functions we verified are properly documented in the README.md file with clear descriptions, including:
- Context utilities (SetIntValue, GetIntValue)
- Error handling (NewErrorAggregator, Add, Error, HasErrors)
- State management (SetState, IsState, HasState)
- Pointer utilities (DefaultIfNil)
- Random generators (Number, StringWithLength)
- URL operations (Parse, Build, Encode)
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash
# Description: Verify that all new functions are documented in readME.md
# Search for new function declarations in the codebase
echo "Searching for new function declarations..."
FUNCTIONS=(
"SetIntValue"
"GetIntValue"
"NewErrorAggregator"
"Add"
"Error"
"HasErrors"
"SetState"
"IsState"
"HasState"
"DefaultIfNil"
"Number"
"StringWithLength"
"Parse"
"Build"
"Encode"
)
for func in "${FUNCTIONS[@]}"; do
echo "Checking documentation for $func..."
rg -i "\b$func\b" readME.md
done
Length of output: 3817
🧰 Tools
🪛 LanguageTool
[uncategorized] ~54-~54: Possible missing comma found.
Context: ...eBool**: Returns the value of a boolean pointer or false if nil. - NullableTime: Re...
(AI_HYDRA_LEO_MISSING_COMMA)
[uncategorized] ~56-~56: Possible missing comma found.
Context: ...eInt**: Returns the value of an integer pointer or zero if nil. - NullableString: R...
(AI_HYDRA_LEO_MISSING_COMMA)
[grammar] ~110-~110: The word “checkout” is a noun. The verb is spelled with a space.
Context: ... For examples of each function, please checkout EXAMPLES.md --- # Co...
(NOUN_VERB_CONFUSION)
[duplication] ~115-~115: Possible typo: you repeated a word
Context: ...ut EXAMPLES.md --- # Contributions Contributions to this project are welcome! If you wou...
(ENGLISH_WORD_REPEAT_RULE)
EXAMPLES.md (1)
1-1081
: Documentation is comprehensive and well-structured
The examples are clear, practical, and cover a wide range of functionality. The consistent structure makes it easy to understand each utility's usage.
🧰 Tools
🪛 LanguageTool
[misspelling] ~74-~74: Use “an” instead of ‘a’ if the following word starts with a vowel sound, e.g. ‘an article’, ‘an hour’.
Context: ...utput: JohnDoe
### Set and Get a Int Value in Context ```go package main...
(EN_A_VS_AN)
[uncategorized] ~996-~996: Loose punctuation mark.
Context: ... a string to uppercase. 2. toLower
: Converts a string to lowercase. 3. **`t...
(UNLIKELY_OPENING_PUNCTUATION)
[uncategorized] ~997-~997: Loose punctuation mark.
Context: ...ts a string to lowercase. 3. title
: Converts a string to title case (e.g., ...
(UNLIKELY_OPENING_PUNCTUATION)
[uncategorized] ~998-~998: Loose punctuation mark.
Context: ...rld" → "Hello World"). 4. contains
: Checks if a string contains a specified...
(UNLIKELY_OPENING_PUNCTUATION)
[uncategorized] ~999-~999: Loose punctuation mark.
Context: ... a specified substring. 5. replace
: Replaces all occurrences of a substring...
(UNLIKELY_OPENING_PUNCTUATION)
[uncategorized] ~1000-~1000: Loose punctuation mark.
Context: ...tring with another string. 6. trim
: Removes leading and trailing whitespace...
(UNLIKELY_OPENING_PUNCTUATION)
[uncategorized] ~1001-~1001: Loose punctuation mark.
Context: ...whitespace from a string. 7. split
: Splits a string into a slice based on a...
(UNLIKELY_OPENING_PUNCTUATION)
[uncategorized] ~1002-~1002: Loose punctuation mark.
Context: ... a specified delimiter. 8. reverse
: Reverses a string (supports Unicode cha...
(UNLIKELY_OPENING_PUNCTUATION)
[uncategorized] ~1003-~1003: Loose punctuation mark.
Context: ...s Unicode characters). 9. toString
: Converts a value of any type to its str...
(UNLIKELY_OPENING_PUNCTUATION)
[uncategorized] ~1007-~1007: Loose punctuation mark.
Context: ...ect using a custom layout. 11. now
: Returns the current date and time (`tim...
(UNLIKELY_OPENING_PUNCTUATION)
[uncategorized] ~1011-~1011: Loose punctuation mark.
Context: ...add**: Adds two integers. 13. **
sub`**: Subtracts the second integer from the f...
(UNLIKELY_OPENING_PUNCTUATION)
[uncategorized] ~1012-~1012: Loose punctuation mark.
Context: ...nd integer from the first. 14. mul
: Multiplies two integers. 15. div
:...
(UNLIKELY_OPENING_PUNCTUATION)
[uncategorized] ~1013-~1013: Loose punctuation mark.
Context: ...: Multiplies two integers. 15. div
: Divides the first integer by the second...
(UNLIKELY_OPENING_PUNCTUATION)
[uncategorized] ~1014-~1014: Loose punctuation mark.
Context: ...second (integer division). 16. mod
: Returns the remainder of dividing the f...
(UNLIKELY_OPENING_PUNCTUATION)
[uncategorized] ~1018-~1018: Loose punctuation mark.
Context: ...hecks if a value is nil
. 18. not
: Negates a boolean value (e.g., true
→...
(UNLIKELY_OPENING_PUNCTUATION)
[uncategorized] ~1022-~1022: Loose punctuation mark.
Context: ...(useful for debugging). 20. typeOf
: Returns the type of a value as a string...
(UNLIKELY_OPENING_PUNCTUATION)
[grammar] ~1022-~1022: If ‘type’ is a classification term, ‘a’ is not necessary. Use “type of”. (The phrases ‘kind of’ and ‘sort of’ are informal if they mean ‘to some extent’.)
Context: ...bugging). 20. typeOf
: Returns the type of a value as a string. ### Safe HTML Rende...
(KIND_OF_A)
Summary by CodeRabbit
New Features
EXAMPLES.md
file with practical examples for utilizing library features.readME.md
with clearer descriptions, installation instructions, and expanded features.Bug Fixes
Documentation
readME.md
and added examples inEXAMPLES.md
.