Skip to content
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

chore: fix some typos in comment #6053

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/byron-to-alonzo/update-4.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -e
# This script will initiate the transition to protocol version 4 (Mary).

# You need to provide the current epoch as a positional argument (the Shelley
# update system requires this to be includded in the update proposal).
# update system requires this to be included in the update proposal).


# In order for this to be successful, you need to already be in protocol version
Expand Down
2 changes: 1 addition & 1 deletion trace-dispatcher/doc/trace-dispatcher.md
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,7 @@ checkNodeTraceConfiguration ::
-> IO [Text]
```

An example text is "Config namespace error: i.am.an.invalid.namepace" .
An example text is "Config namespace error: i.am.an.invalid.namespace" .

This check is performed within a `cardano-node` test case (`Test.Cardano.Tracing.NewTracing.Consistency.tests`), ensuring that it is automatically verified with each pull request.

Expand Down
4 changes: 2 additions & 2 deletions trace-dispatcher/src/Cardano/Logging/DocuGenerator.hs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ documentTracer' hook tracer = do
tr' <- hook tracer
documentTracer tr'

-- This fuction calls document tracers and returns a DocTracer result
-- This function calls document tracers and returns a DocTracer result
documentTracer :: forall a.
MetaTrace a
=> Trace IO a
Expand Down Expand Up @@ -309,7 +309,7 @@ documentTracer tracer = do



-- | Calls the tracers in a documetation control mode,
-- | Calls the tracers in a documentation control mode,
-- and returns a DocCollector, from which the documentation gets generated
documentTracersRun :: forall a. MetaTrace a => [Trace IO a] -> IO DocCollector
documentTracersRun tracers = do
Expand Down
2 changes: 1 addition & 1 deletion trace-dispatcher/src/Cardano/Logging/Forwarding.hs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ launchForwarders iomgr magic
ekgStore sink dpStore tracerSocketMode =
-- If 'tracerSocketMode' is not specified, it's impossible to establish
-- network connection with acceptor application (for example, 'cardano-tracer').
-- In this case, we should not lauch forwarders.
-- In this case, we should not launch forwarders.
case tracerSocketMode of
Nothing -> return ()
Just (socketPath, mode) ->
Expand Down
Loading