-
-
Notifications
You must be signed in to change notification settings - Fork 3k
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
docs: decapitalize IPFS where possible #2911
Conversation
@@ -20,7 +20,7 @@ var CatCmd = &cmds.Command{ | |||
}, | |||
|
|||
Arguments: []cmds.Argument{ | |||
cmds.StringArg("ipfs-path", true, true, "The path to the IPFS object(s) to be outputted.").EnableStdin(), | |||
cmds.StringArg("ipfs-path", true, true, "The path to the ipfs object(s) to be outputted.").EnableStdin(), |
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.
In this case it should probably capital. It is about IPFS object.
5903f0e
to
8ad5d35
Compare
@Kubuxu updated |
8ad5d35
to
90a3921
Compare
SGTM but now you have merge conflict with master, you need to rebase. |
a37beb5
to
3dfcc45
Compare
@Kubuxu rebased |
@@ -43,10 +43,10 @@ multihash. | |||
|
|||
var blockStatCmd = &cmds.Command{ | |||
Helptext: cmds.HelpText{ | |||
Tagline: "Print information of a raw IPFS block.", | |||
Tagline: "Print information of a raw ipfs block.", |
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.
why is this one lowercase while the surrounding two are capitalized?
@RichardLitt youre gonna have to fix some of the tests. You changed print statements that we test the output of |
1e7f038
to
d7cac53
Compare
@whyrusleeping I tried to find the failing tests that are relevant to this, and I'm not seeing any. Can you help me? |
@RichardLitt t0020 - When you open test console on circle, search for |
@Kubuxu I saw both of those: I don't know how to fix those particular issues. What code should I change to make that pass? How would I know? Can you please help me by listing exactly what you would do to fix one of these, here - I just don't know the workflow. |
@RichardLitt take a look at the code for the test that is failing. They are in the test/sharness folder. The string next to the 'not ok' messages tells you which test. Look at the code being executed by the test and see why it would be failling. |
Ok:
as
It looks fine to me, and no different on master, where I run the same thing. What am I missing? |
@whyrusleeping Can you help me with my question above? |
@RichardLitt The issue here is that you changed the capitalization of ipfs. in some tests You will have to update these tests and change the capitalization the same way you did in the code. While on this branch, cd into the test/sharness folder and run |
d7cac53
to
3a3c168
Compare
Updated. Only failures were in the docker tests, which were unrelated - not sure why those aren't working. |
3a3c168
to
c3d2e4b
Compare
Tried to check all instances of IPFS and make sure they werent referring to the CLI tool. See #2910. License: MIT Signed-off-by: Richard Littauer <[email protected]>
c3d2e4b
to
9843e86
Compare
License: MIT Signed-off-by: Richard Littauer <[email protected]>
docs: decapitalize IPFS where possible
docs: decapitalize IPFS where possible This commit was moved from ipfs/kubo@437cc7f
Tried to check all instances of IPFS and make sure they werent referring to the CLI tool. See #2910.
License: MIT
Signed-off-by: Richard Littauer [email protected]