-
Notifications
You must be signed in to change notification settings - Fork 76
add spelling conventions and name fixes in a whole project #1364
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
base: master
Are you sure you want to change the base?
Conversation
*add spelling conventions and name fixes in |
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.
YES! Thanks!
Just a couple auto-replace mistakes ;P but looks great otherwise
@@ -168,12 +168,12 @@ public fun <C> ColumnMatch(left: ColumnReference<C>, right: ColumnReference<C>): | |||
public typealias JoinColumnsSelector<A, B> = JoinDsl<A, B>.(ColumnsContainer<A>) -> ColumnsResolver<*> | |||
|
|||
public enum class JoinType { | |||
Left, // all data from left data frame, nulls for mismatches in right data frame |
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.
wow we really were the definition of inconsistent XD
@@ -1075,7 +1075,7 @@ class JsonTests { | |||
} | |||
|
|||
@Test | |||
fun `json with metadata frame column`() { | |||
fun `json with metadataframe column`() { |
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.
this joined the two wrong ones together haha, *metadata FrameColumn. We don't really have a "concept" version of FrameColumn. I guess "frame column" could be right or "frame-column", whatever we choose :) (Unfortunately English has no clear rules when words need to be conjoined or not... Let's make our next library in Dutch or German XD)
@@ -1,7 +1,7 @@ | |||
# Custom integrations with unsupported data sources | |||
|
|||
<web-summary> | |||
Examples of how to integrate Kotlin DataFrame with other data frameworks like Exposed, Spark, or Multik. | |||
Examples of how to integrate Kotlin DataFrame with other dataframeworks like Exposed, Spark, or Multik. |
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.
nope XD
@@ -15,7 +15,7 @@ How to connect Kotlin DataFrame with data sources like Exposed, Apache Spark, or | |||
Some data sources are not officially supported in the Kotlin DataFrame API yet — | |||
but you can still integrate them easily using custom code. | |||
|
|||
Below is a list of example integrations with other data frameworks. | |||
Below is a list of example integrations with other dataframeworks. |
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.
also nope
|
||
While reading Kotlin DataFrame documentation, you may come across several similar terms referring to different concepts: | ||
|
||
* **Kotlin DataFrame** — the name of the official library. |
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.
yes, important to mention that we often abbreviate this to "DataFrame". Not no be confused with the type "DataFrame
", but that one always has code-style applied to it... hopefully
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.
"Kotlin DataFrame" or "DataFrame" for short
|
||
* **Kotlin DataFrame** — the name of the official library. | ||
* *dataframe* — a general term for data in a tabular (frame) format. | ||
* [`DataFrame`](DataFrame.md) — a Kotlin type or its instance that represents a wrapper around a dataframe. |
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.
yes, important to mention this has backticks (or code formatting) around it
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.
pretty sure this file doesn't need to change
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.
same here
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.
same here
Related to #661