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

Remove duplicate text from join.md #8058

Merged
merged 2 commits into from
Aug 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 4 additions & 9 deletions doc/docs/2.2.x/concepts/pipeline-concepts/datum/join.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,15 +194,10 @@ join. The change to the pipeline spec is simple:
}
```

Your code will see the joined pairs that it saw before. In addition to
those five datums, your code will also see three new ones: one for each of the
parameter files which didn't have a match. Note that this means that your code needs
to handle (not crash) the case where some of the inputs are represented under `/pfs`.

Your code will see the joined pairs that it saw before. In addition to
those five datums, your code will also see three new ones:
one for each `parameters` file that didn't match. Note that this means that your code needs
to handle (not crash) the case where some of the inputs are represented under `/pfs`.
Your code will see the joined pairs that it saw before. In addition to those
five datums, your code will also see three new ones: one for each of the files
in `parameters` that didn't match. Note that this means that your code needs to
handle (not crash) the case where input files are missing from `/pfs/readings`.



Expand Down
13 changes: 4 additions & 9 deletions doc/docs/2.3.x/concepts/pipeline-concepts/datum/join.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,15 +194,10 @@ join. The change to the pipeline spec is simple:
}
```

Your code will see the joined pairs that it saw before. In addition to
those five datums, your code will also see three new ones: one for each of the
parameter files which didn't have a match. Note that this means that your code needs
to handle (not crash) the case where some of the inputs are represented under `/pfs`.

Your code will see the joined pairs that it saw before. In addition to
those five datums, your code will also see three new ones:
one for each `parameters` file that didn't match. Note that this means that your code needs
to handle (not crash) the case where some of the inputs are represented under `/pfs`.
Your code will see the joined pairs that it saw before. In addition to those
five datums, your code will also see three new ones: one for each of the files
in `parameters` that didn't match. Note that this means that your code needs to
handle (not crash) the case where input files are missing from `/pfs/readings`.



Expand Down
13 changes: 4 additions & 9 deletions doc/docs/master/concepts/pipeline-concepts/datum/join.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,15 +194,10 @@ join. The change to the pipeline spec is simple:
}
```

Your code will see the joined pairs that it saw before. In addition to
those five datums, your code will also see three new ones: one for each of the
parameter files which didn't have a match. Note that this means that your code needs
to handle (not crash) the case where some of the inputs are represented under `/pfs`.

Your code will see the joined pairs that it saw before. In addition to
those five datums, your code will also see three new ones:
one for each `parameters` file that didn't match. Note that this means that your code needs
to handle (not crash) the case where some of the inputs are represented under `/pfs`.
Your code will see the joined pairs that it saw before. In addition to those
five datums, your code will also see three new ones: one for each of the files
in `parameters` that didn't match. Note that this means that your code needs to
handle (not crash) the case where input files are missing from `/pfs/readings`.



Expand Down