You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by bl...@apache.org on 2019/07/06 20:07:46 UTC

[incubator-iceberg] branch master updated: Minor updates to docs.

This is an automated email from the ASF dual-hosted git repository.

blue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-iceberg.git


The following commit(s) were added to refs/heads/master by this push:
     new dc160c6  Minor updates to docs.
dc160c6 is described below

commit dc160c6964da829f64f0cd8f834b89af31d5cced
Author: Ryan Blue <bl...@apache.org>
AuthorDate: Sat Jul 6 13:07:00 2019 -0700

    Minor updates to docs.
---
 site/docs/api-quickstart.md | 4 ++--
 site/docs/css/extra.css     | 4 ++++
 site/docs/spec.md           | 4 ++--
 3 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/site/docs/api-quickstart.md b/site/docs/api-quickstart.md
index 075dde3..a9233fb 100644
--- a/site/docs/api-quickstart.md
+++ b/site/docs/api-quickstart.md
@@ -2,7 +2,7 @@
 
 ## Create a table
 
-Tables are created using either a `Catalog` or an implementation of the `Tables` interface.
+Tables are created using either a [`Catalog`](/javadoc/master/index.html?org/apache/iceberg/catalog/Catalog.html) or an implementation of the [`Tables`](/javadoc/master/index.html?org/apache/iceberg/Tables.html) interface.
 
 ### Using a Hive catalog
 
@@ -25,7 +25,7 @@ val table = catalog.createTable(name, schema, spec)
 // write into the new logs table with Spark 2.4
 logsDF.write
     .format("iceberg")
-    .save("db.table")
+    .save("logging.logs")
 ```
 
 The logs [schema](#create-a-schema) and [partition spec](#create-a-partition-spec) are created below.
diff --git a/site/docs/css/extra.css b/site/docs/css/extra.css
index ea1ac09..dab91c4 100644
--- a/site/docs/css/extra.css
+++ b/site/docs/css/extra.css
@@ -56,3 +56,7 @@ h5:target .headerlink {
   color: #008cba;
   opacity: 1;
 }
+
+code {
+  color: #458;
+}
diff --git a/site/docs/spec.md b/site/docs/spec.md
index 33126a7..ef99596 100644
--- a/site/docs/spec.md
+++ b/site/docs/spec.md
@@ -361,7 +361,7 @@ Each version of table metadata is stored in a metadata folder under the table’
 
 Notes:
 
-1. The file system table scheme is implemented in [HadoopTableOperations](https://github.com/Netflix/iceberg/blob/master/core/src/main/java/com/netflix/iceberg/hadoop/HadoopTableOperations.java#L91).
+1. The file system table scheme is implemented in [HadoopTableOperations](/javadoc/master/index.html?org/apache/iceberg/hadoop/HadoopTableOperations.html).
 
 #### Metastore Tables
 
@@ -377,7 +377,7 @@ Each version of table metadata is stored in a metadata folder under the table’
 
 Notes:
 
-1. The metastore table scheme is partly implemented in [BaseMetastoreTableOperations](https://github.com/Netflix/iceberg/blob/master/core/src/main/java/com/netflix/iceberg/BaseMetastoreTableOperations.java).
+1. The metastore table scheme is partly implemented in [BaseMetastoreTableOperations](/javadoc/master/index.html?org/apache/iceberg/BaseMetastoreTableOperations.html).
 
 ## Appendix A: Format-specific Requirements