@@ -379,50 +379,50 @@ a generator of lists :meth:`~django_excel.ExcelMixin.iget_array`
379379 :param sheet_name: For an excel book, there could be multiple sheets. If it is left
380380 unspecified, the sheet at index 0 is loaded. For 'csv', 'tsv' file,
381381 *sheet_name* should be None anyway.
382- :param keywords: additional keywords to :meth :`pyexcel.get_sheet`
382+ :param keywords: additional keywords to :func :`pyexcel.get_sheet`
383383 :returns: A sheet object
384384
385385.. method:: get_array(sheet_name=None, **keywords)
386386
387387 :param sheet_name: same as :meth:`~django_excel.ExcelMixin.get_sheet`
388- :param keywords: additional keywords to pyexcel library
388+ :param keywords: additional keywords to :func:` pyexcel.get_array`
389389 :returns: a two dimensional array, a list of lists
390390
391391.. method:: iget_array(sheet_name=None, **keywords)
392392
393393 :param sheet_name: same as :meth:`~django_excel.ExcelMixin.get_sheet`
394- :param keywords: additional keywords to pyexcel library
394+ :param keywords: additional keywords to :func:` pyexcel.iget_array`
395395 :returns: a generator for a two dimensional array, a list of lists
396396
397397.. method:: get_dict(sheet_name=None, name_columns_by_row=0, **keywords)
398398
399399 :param sheet_name: same as :meth:`~django_excel.ExcelMixin.get_sheet`
400400 :param name_columns_by_row: uses the first row of the sheet to be column headers by default.
401- :param keywords: additional keywords to pyexcel library
401+ :param keywords: additional keywords to :func:` pyexcel.get_dict`
402402 :returns: a dictionary of the file content
403403
404404.. method:: get_records(sheet_name=None, name_columns_by_row=0, **keywords)
405405
406406 :param sheet_name: same as :meth:`~django_excel.ExcelMixin.get_sheet`
407407 :param name_columns_by_row: uses the first row of the sheet to be record field names by default.
408- :param keywords: additional keywords to pyexcel library
408+ :param keywords: additional keywords to :func:` pyexcel.get_records`
409409 :returns: a list of dictionary of the file content
410410
411411.. method:: iget_records(sheet_name=None, name_columns_by_row=0, **keywords)
412412
413413 :param sheet_name: same as :meth:`~django_excel.ExcelMixin.get_sheet`
414414 :param name_columns_by_row: uses the first row of the sheet to be record field names by default.
415- :param keywords: additional keywords to pyexcel library
415+ :param keywords: additional keywords to :func:` pyexcel.iget_records`
416416 :returns: a generator for a list of dictionary of the file content
417417
418418.. method:: get_book(**keywords)
419419
420- :param keywords: additional keywords to pyexcel library
420+ :param keywords: additional keywords to :func:` pyexcel.get_book`
421421 :returns: a two dimensional array, a list of lists
422422
423423.. method:: get_book_dict(**keywords)
424424
425- :param keywords: additional keywords to pyexcel library
425+ :param keywords: additional keywords to :func:` pyexcel.get_book_dict`
426426 :returns: a two dimensional array, a list of lists
427427
428428.. method:: save_to_database(model=None, initializer=None, mapdict=None, **keywords)
0 commit comments