From 9ae2c11b0274c541a5c618c97b59338df32a5c91 Mon Sep 17 00:00:00 2001 From: Nikita Titov Date: Mon, 10 Aug 2020 21:56:42 +0300 Subject: [PATCH] [ci][docs] fix current master failures for docs test (#3297) --- docs/Parallel-Learning-Guide.rst | 2 +- include/LightGBM/c_api.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/Parallel-Learning-Guide.rst b/docs/Parallel-Learning-Guide.rst index df00ea35a9e..36780bd6b20 100644 --- a/docs/Parallel-Learning-Guide.rst +++ b/docs/Parallel-Learning-Guide.rst @@ -138,7 +138,7 @@ Example .. _The following example: https://github.com/Azure/mmlspark/blob/master/notebooks/samples/LightGBM%20-%20Quantile%20Regression%20for%20Drug%20Discovery.ipynb -.. _Kubeflow Fairing: https://www.kubeflow.org/docs/fairing/fairing-overview +.. _Kubeflow Fairing: https://www.kubeflow.org/docs/components/fairing/fairing-overview .. _These examples: https://github.com/kubeflow/fairing/tree/master/examples/lightgbm diff --git a/include/LightGBM/c_api.h b/include/LightGBM/c_api.h index ea34343362b..6b59df1e737 100644 --- a/include/LightGBM/c_api.h +++ b/include/LightGBM/c_api.h @@ -5,9 +5,9 @@ * \note * To avoid type conversion on large data, the most of our exposed interface supports both float32 and float64, * except the following: - * 1. gradient and Hessian; - * 2. current score for training and validation data. - * . + * 1. gradient and Hessian; + * 2. current score for training and validation data. + * . * The reason is that they are called frequently, and the type conversion on them may be time-cost. */ #ifndef LIGHTGBM_C_API_H_